home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / autostop.zip / AUTOSTOP.DOC next >
Text File  |  1988-11-13  |  2KB  |  60 lines

  1. Autostop 1.0 Batch Utility.
  2.  
  3. Public Domain software.
  4.  
  5. This utility is very simple and easy to use. Its basic function
  6. is to provide a option in batch files. It was mainly designed
  7. for BBS programs that run automatically on startup. It will give you
  8. 10 sec. to hit ESC at which time it will generate a error level of 2
  9. and drop back to batch file. It will then move to another section
  10. of the batch file. ex. follows:
  11.  
  12. Original:
  13.  
  14. <Main Batch file>
  15. RunBBS <<<BBS execute command
  16.  
  17. In order to stop it, you had it hit ctrl-c and press y.
  18.  
  19. Autostop:
  20.  
  21. <Main Batch file>
  22. Autostop                     \ stops and waits for 10 sec. so you can press
  23. if errorlevel 2 goto other   / ESC if you want.
  24. RunBBS
  25. :other
  26. <Rest of optional batch file>
  27.  
  28.  
  29. If you do not press escape it will continue running the batch file
  30. as if nothing had happened.
  31.  
  32.  
  33. If you want Autostop to automatically modify your batch file, enter
  34. AutoExec MODIFY (all caps) and it will modify the batch file of you choice.
  35. (The batch file cannot have any BLANK lines at the end of the file).
  36.  
  37. If you wish to customize how it works simply add the 2 statements
  38. (as shown above) before the command to be Paused, and put in the label
  39. somewhere in the batch file with the rest of it. This may be confusing,
  40. but once you try it, it should fall into place.
  41.  
  42.  
  43. If you really enjoy the program we ask that you send a small donation
  44. to the Force Development Company. All programs released by FDC are written
  45. by students still in High School. All funds will go to furthur the develop-
  46. ment of software and will go only to students. All software is PD and this
  47. only a request. Thank you for your support.
  48.  
  49.                      Force Development Co.
  50.                         10416 Centaur
  51.                          El Paso, Tx
  52.                             79924
  53.  
  54.            Make Checks/M.O's payable to Bobby Beckmann
  55.  
  56.  
  57.  
  58.  
  59.  
  60.